home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 December / CHIP Aralık 1996.iso / pm6try / pm6.ctl < prev    next >
Text File  |  1995-11-01  |  2KB  |  97 lines

  1. /********************************************************************
  2.  * PC installer (aldsetup) control file for PageMaker 5.0a  1.44mb Disks
  3.  * Copyright (C) 1992 - 1995 Adobe Systems Inc.  All rights reserved.
  4.  * Control file administrator: Frederick LLoyd
  5.  ********************************************************************/
  6.  
  7. PRODUCT "PageMaker 6.0"    { }
  8.  
  9. VERSIONREQ "3.0"
  10.  
  11. /*************************/
  12. /** Dialog definitions    **/
  13.  
  14. DIALOG MinCPURequired "&OK"
  15. {
  16.     CAPTION "CPU Requirements"
  17.     TEXT
  18.     {
  19.     "Unable to install Adobe PageMaker 6.0. Minimum configuration "
  20.     "requires a 486 processor or greater."
  21.     }
  22. }
  23.  
  24. DIALOG MinRAMRequiredWin95 "&OK"
  25. {
  26.     CAPTION "RAM Memory Requirements"
  27.     TEXT
  28.     {
  29.     "Unable to install Adobe PageMaker 6.0. Minimum memory requirement "
  30.     "for operating under Windows 95 is 8 megabytes of RAM."
  31.     }
  32. }
  33.  
  34. DIALOG MinRAMRequiredWin32s "&OK"
  35. {
  36.     CAPTION "RAM Memory Requirements"
  37.     TEXT
  38.     {
  39.     "Unable to install Adobe PageMaker 6.0. Minimum memory requirement "
  40.     "for operating under Windows 3.x is 10 megabytes of RAM."
  41.     }
  42. }
  43. /*****   PACKAGE DEFINITION SECTION *********/
  44.  
  45.  
  46. PACKAGE PROLOGUE "" SELECTED INVISIBLE
  47. {
  48.     /***** Global Variable Declarations & System Min. Config Checks *****/
  49.     GETCPUTYPE    CpuType
  50.  
  51.     IF CpuType EQS "I386"
  52.     {
  53.         DISPLAY MinCPURequired
  54.         EXIT
  55.     }
  56.  
  57.     GETOPSYS    O_System
  58.  
  59.     IF O_System EQS "Win95"
  60.     {
  61.         GETRAMMEMORY    "8" TotalResult ""
  62.         IF TotalResult EQS "FALSE"
  63.         {
  64.             DISPLAY MinRAMRequiredWin95
  65.             EXIT
  66.         }
  67.     }
  68.  
  69.     IF O_System EQS "Win32s"
  70.     {
  71.         GETRAMMEMORY    "8"  TotalResult ""
  72.         IF TotalResult EQS "FALSE"
  73.         {
  74.             DISPLAY MinRAMRequiredWin32s
  75.             EXIT
  76.         }
  77.     }
  78.  
  79.     BTNCHOICEDLG 3 "Language Choice" "Choose the language version you wish to install." "U.S. English" "Canadian English" "International English" "" "" LangChoice
  80.     IF LangChoice EQS "1"
  81.     {
  82.         LOADRESOURCE "aldlang.dll"
  83.         EXECCTLFILE  "D0\PM6_CTL.US"
  84.     }
  85.     IF LangChoice EQS "2"
  86.     {
  87.         LOADRESOURCE "ENGSETUP.dll"
  88.         EXECCTLFILE  "D0\PM6_CTL.CE"
  89.     }
  90.     IF LangChoice EQS "3"
  91.     {
  92.         LOADRESOURCE "ENGSETUP.dll"
  93.         EXECCTLFILE  "D0\PM6_CTL.IE"
  94.     }
  95. }
  96.  
  97.